/**
* @desc simplePagination.js. A simple jQuery pagination plugin.
* @version v1.6
* @api http://flaviusmatis.github.com/simplePagination.js/
* @github https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
	list-style: none;
}

.simple-pagination {
	display: block;
	overflow: hidden;
	padding: 0 5px 5px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}
span.ellipse.clickable {
	cursor: pointer;
}

.ellipse input {
	width: 3em;
}

.light-theme a {
	text-decoration: none;
}
/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/
.light-theme span {
	cursor:pointer;
}

.light-theme a, .light-theme span {
	float: left;
	font-size:14px;
	font-weight: normal;
	text-align: center;
	min-width: 14px;
	padding: 6px 16px;
	margin: 0 5px 0 0;
	background-color: #f3f3f3;
	color: #0f0f0f;
	cursor: pointer;
	border-radius: 2px;
	display: inline-block;
}

.light-theme a:hover, .light-theme span:not(.ellipse) .light-theme li:not(.disabled):not(.active) span:hover {
	background: #19378C;
	color: #fff;
}

.light-theme .current {
	background: #19378C;
	color: #fff;
	cursor: default;
}
.light-theme .disabled span{
	background-color: #f3f3f3;
	color: #0f0f0f;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}
